home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 May / SGI IRIX 6.5 Complementary Applications 2004 May.iso / dist / OpenOffice.idb / usr / OpenOffice / help / en / sbasic.jar / text / sbasic / common / 03080801.xml < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-24  |  2.4 KB  |  45 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>Hex Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03080801"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
  3.  
  4.         p.P1{
  5.                 }
  6.         p.P2{
  7.                 }
  8.         span.T1{
  9.                 font-weight:bold;}
  10.         </style></head><body>
  11.   
  12.   
  13.   <help:to-be-embedded Eid="hex" xmlns:help="http://openoffice.org/2000/help">
  14.   <p class="Head1"><help:link Id="66486">Hex Function [Runtime]</help:link></p>
  15.   <p class="Paragraph">Returns a string that represents the hexadecimal value of a number.</p>
  16.   </help:to-be-embedded>
  17.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  18.   <p class="Paragraph">Hex (Number) <help:key-word value="Hex" tag="kw66486_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  19.   <p class="Paragraph"><span class="T1">Return value</span>:</p>
  20.   <p class="Paragraph">String</p>
  21.   <p class="Paragraph"><span class="T1">Parameter</span>:</p>
  22.   <p class="Paragraph">Number: Any numeric expression to be converted to a hexadecimal number.</p>
  23.   <p class="P2">Example:</p>
  24.   <p class="PropText">Sub ExampleHex</p>
  25.   <p class="PropText">REM uses BasicFormulas in <help:productname xmlns:help="http://openoffice.org/2000/help">%PRODUCTNAME</help:productname> Calc</p>
  26.   <p class="PropText">Dim a2, b2, c2 as String</p>
  27.   <p class="PropText">a2 = "&H3E8"</p>
  28.   <p class="PropText">b2 = Hex2Int(a2)</p>
  29.   <p class="PropText">MsgBox b2</p>
  30.   <p class="PropText">c2 = Int2Hex(b2)</p>
  31.   <p class="PropText">MsgBox c2</p>
  32.   <p class="PropText">End Sub</p>
  33.   <p class="PropText"/>
  34.   <p class="PropText"/>
  35.   <p class="PropText">Function Hex2Int( sHex As String ) As Long</p>
  36.   <p class="PropText"><text:tab-stop xmlns:text="http://openoffice.org/2000/text"/>REM Returns a Long-Integer from a hexadecimal value.</p>
  37.   <p class="PropText">Hex2Int = clng( sHex )</p>
  38.   <p class="PropText">End Function</p>
  39.   <p class="PropText"/>
  40.   <p class="PropText">Function Int2Hex( iLong As Long) As String</p>
  41.   <p class="PropText"><text:tab-stop xmlns:text="http://openoffice.org/2000/text"/>REM Calculates a hexadecimal value in Integer.</p>
  42.   <p class="PropText">Int2Hex = "&H" & Hex( iLong )</p>
  43.   <p class="PropText">End Function</p>
  44.   <p class="PropText"/>
  45.  </body></html>